Thanks for downloading my first weapon port - The UMP45 FROM MW3

The Sounds may sound a bit wierd but they are the only ones i could find. 

i have alos included the model_exports adnd xanim_exports (with the saves i used to port the weapons so you can open them up in maya and see) 

TUT. 

Before you do anything below make sure you copy all the files provided into your root directory. 

1) open your dlc3_code.gsc and find
include_weapons()
{

Then add this right under it
// Custom Weapons
	include_weapon( "mw3_ump45" );
	include_weapon( "mw3_ump45_upgraded", false );

so it looks like this 

include_weapons()
{

// Custom Weapons
	include_weapon( "mw3_ump45" );
	include_weapon( "mw3_ump45_upgraded", false );

2) open your _zombiemode_weapons.gsc and find 
init_weapons()
{

and then place this right under it
 
// Custom Weapons
	add_zombie_weapon( "mw3_ump45", 						&"ZOMBIE_WEAPON_GEWEHR43_600", 				1200,	"" ,			0 );
	add_zombie_weapon( "mw3_ump45_upgraded", 				&"ZOMBIE_WEAPON_GEWEHR43_600", 				1200,	"" ,			0 );

so it looks like this 

init_weapons()
{

// Custom Weapons
	add_zombie_weapon( "mw3_ump45", 						&"ZOMBIE_WEAPON_GEWEHR43_600", 				1200,	"" ,			0 );
	add_zombie_weapon( "mw3_ump45_upgraded", 				&"ZOMBIE_WEAPON_GEWEHR43_600", 				1200,	"" ,			0 );

3) Add these lines to your mod.csv

weapon,sp\mw3_ump45
weapon,sp\mw3_ump45_upgraded
sound,mw3_ump45,,all_mp

Hope you like it :) 